home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / oper_sys / emerald / emrldsys.lha / Language / Compiler / Builtins / Any.m < prev    next >
Encoding:
Text File  |  1990-08-16  |  285 b   |  17 lines

  1. % @(#)Any.m    1.1  3/6/87
  2. %
  3. export _AnyObject to "Builtins"
  4.  
  5. const _AnyObject == immutable object _AnyObject
  6.   export getSignature
  7.  
  8.   const AnyType == type AnyType
  9.   end AnyType
  10.  
  11.   function getSignature -> [result : Signature]
  12.     result <- AnyType
  13.   end getSignature
  14. end _AnyObject
  15.  
  16.